home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 43 / Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso / -serious- / comms / other / facts2.7 / install.rexx < prev    next >
OS/2 REXX Batch file  |  1999-06-14  |  365b  |  22 lines

  1. /* FACTS ARexx install script: quits running FACTS, and loads new one
  2. ** $VER: FACTS_Install.rexx 1.0 (22.11.98)
  3. */
  4.  
  5. /* ARG filename */
  6. OPTIONS RESULTS
  7.  
  8. if show(ports,FACTS) then ADDRESS FACTS 'QUIT'
  9.  
  10. ADDRESS COMMAND 'WBRun FACTS'
  11.  
  12. ADDRESS COMMAND 'WaitForPort FACTS'
  13.  
  14. ADDRESS FACTS 'GETTIME'
  15.  
  16. open(0,'T:TIME','W')
  17. writeln(0,RESULT)
  18. close(0)
  19.  
  20. ADDRESS FACTS 'SHOW'
  21.  
  22.